.nav-list > li:nth-child(2) a {
    color: #1e90ff;
}

.post :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: 10px;
}

.post > p {
    margin-top: 10px;
}

.post li {
    font-size: 1.2rem;
}

/*about hero section start*/
.about-hero {
    width: 100%;
    height: 75vh;
    max-height: 1920px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    margin-bottom: 30px;
}

.about-hero-text,
.about-hero svg {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 20px;
}

.about-hero-image {
    min-width: 40%;
    height: 80%;
}

.about-hero-text h1,
.about-hero-text h4 {
    margin: 0.2rem;
    text-align: center;
    color: #FAF9F6;
}
/*end of about hero section*/

figure {
    margin: 0;
}

.about-photo {
    width: 100%;
    border-radius: 15px;
}

.about-photo-caption {
    color: #fff;
    font-size: 0.9rem;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    text-align: center;
    font-style: italic;
    width: 90%;
    margin: -35px auto 10px auto;
}

.about-speck {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: -30px;
}

/*mobile devices*/
@media (max-width: 768px) {
  .about-hero {
    align-items: center;
    flex-direction: column;
    height: auto;
    overflow: hidden;
  }

  .about-hero-image {
    display: block;
    width: 100%;
    height: auto;
    order: -1;
}

  .about-hero-text {
    text-align: center;
    margin: -10px auto 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .about-hero-text h1,
  .about-hero-text h4 {
    margin: 0.4rem;
    padding: 0 10px;
  }

    .about-speck {
        margin-bottom: -10px;
    }
}
/*end mobile devices*/